tools: Fix xm mem-max command.
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Fri, 8 Jun 2007 10:21:21 +0000 (11:21 +0100)
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Fri, 8 Jun 2007 10:21:21 +0000 (11:21 +0100)
commit31cc2c0efd312bddd44792d5e3e7d1a0371e4827
tree18f656ff8c060623dea37494decc01894c8624f8
parent3f0a8ce1d77c3989f04a5a511832f07aed0c8561
tools: Fix xm mem-max command.

When I tested xm mem-max and xm list, I saw the following error
message by xm list.  Because xm mem-max always changes
"memory_static_max", I think that the cause of the error message
is it.  This patch fixes it.

# xm list --long PVdomain.1 | grep mem
    (maxmem 1024)
    (memory 1024)
    (shadow_memory 0)
# xm mem-max PVdomain.1 512
Error: (22, 'Invalid argument')
Usage: xm mem-max <Domain> <Mem>

Set the maximum amount reservation for a domain.
# xm list --long PVdomain.1 | grep mem
Error: memory_dynamic_max must be less than or equal to
memory_static_max

Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com>
tools/python/xen/xend/XendDomainInfo.py